home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993 October: Windmill on DISC / ADC Developer CD (1993-10) (''Windmill On DISC'')_iso / Dev.CD Oct 93.iso / System Software / U.S. System Software / System 7 Pro™ Beta 11 / Development Tools / Sample Code / Standard Mail / CollaboDraw (w⁄DigiSign) / utils.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-11  |  980 b   |  41 lines  |  [TEXT/MPS ]

  1. #ifndef __MENUS__
  2. #include <Menus.h>
  3. #endif
  4.  
  5. #ifndef __MEMORY__
  6. #include <Memory.h>
  7. #endif
  8.  
  9. Boolean HasColorQD(void);
  10.  
  11. void DoError(OSErr err);
  12. void Notify(StringPtr string);
  13.  
  14. void pstrcpy(void *dest,void *src);
  15. void pstrcat(void *original,void *catStr);
  16.  
  17. void GetResString(StringPtr storage,short rezID,StringPtr backupString);
  18.  
  19. void *NewPtrChk(Size ptrSize);
  20. void *NewHandleChk(Size hndlSize);
  21. void DisposPtrChk(void *thePtr);
  22. void DisposHandleChk(void *theHndl);
  23.  
  24. void ExitProc(void);
  25.  
  26. void DisableAllMenus(void);
  27. void EnableAllMenuItems(MenuHandle theMenu);
  28. void SetDefaultMenus(void);
  29.  
  30. void SetUndoCommand(WindowPtr window,WInfoPtr infoPtr,const ShapeList *command);
  31. void ClearAppUndo(void);
  32. Boolean SetupAppUndo(void);
  33. Boolean SetUndoString(short commandID,Boolean redoFlag);
  34.  
  35. void ReadPrefs(void);
  36. void WritePrefs(void);
  37. void GetPrefsFolder(FSSpec *fSpec);
  38.  
  39. void MyDrawDefaultButtonOutline(DialogPtr theDialog,short theItem);
  40. GDHandle MyGetDeviceFromRect(Rect *localRect);
  41.